home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Mac / Modules / qd / qdedit.py < prev    next >
Text File  |  1995-01-30  |  506b  |  30 lines

  1. f = Function(void, 'GlobalToLocal',
  2.     (Point, 'thePoint', InOutMode),
  3. )
  4. functions.append(f)
  5.  
  6. f = Function(void, 'LocalToGlobal',
  7.     (Point, 'thePoint', InOutMode),
  8. )
  9. functions.append(f)
  10.  
  11. f = Function(void, 'SetPort',
  12.     (WindowPtr, 'thePort', InMode),
  13. )
  14. functions.append(f)
  15.  
  16. f = Function(void, 'ClipRect',
  17.     (Rect, 'r', InMode),
  18. )
  19. functions.append(f)
  20.  
  21. f = Function(void, 'EraseRect',
  22.     (Rect, 'r', InMode),
  23. )
  24. functions.append(f)
  25.  
  26. f = Function(void, 'OpenDeskAcc',
  27.     (Str255, 'name', InMode),
  28. )
  29. functions.append(f)
  30.